home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / viewLog.js < prev    next >
Encoding:
Text File  |  2004-04-18  |  772 b   |  37 lines

  1. var gFilterList;
  2. var gLogFilters;
  3. var gLogView;
  4.  
  5. function onLoad()
  6. {
  7.   gFilterList = window.arguments[0].filterList;
  8.  
  9.   gLogFilters = document.getElementById("logFilters");
  10.   gLogFilters.checked = gFilterList.loggingEnabled;
  11.  
  12.   gLogView = document.getElementById("logView");
  13.  
  14.   // for security, disable JS
  15.   gLogView.docShell.allowJavascript = false;
  16.  
  17.   // if log doesn't exist, this will create an empty file on disk
  18.   // otherwise, the user will get an error that the file doesn't exist
  19.   gFilterList.ensureLogFile();
  20.  
  21.   gLogView.setAttribute("src", gFilterList.logURL);
  22. }
  23.  
  24. function toggleLogFilters()
  25. {
  26.   gFilterList.loggingEnabled =  gLogFilters.checked;
  27. }
  28.  
  29. function clearLog()
  30. {
  31.   gFilterList.clearLog();
  32.  
  33.   // reload the newly truncated file
  34.   gLogView.reload();
  35. }
  36.  
  37.